Unit Randomness and Chaos
This is the place where the laws of physics don't apply.
Or do they?
Maybe.
Or maybe not.
Quantum Fluctuations and Uncertainties Random Number Generator Chaos Theory in Action// Randomness is just a number between -1 and 1 var random = -0.5 + Math.random(); // Chaos is just a random number with a few extra digits var chaos = 42.1234567890123456789; document.write(random + chaos);
// Sometimes the laws of physics don't apply, sometimes they do
if (random > 1) {
document.write("Reality is broken.");
} else {
document.write("All is well.");
}